async-compat
Compatibility adapter between tokio and futures.
There are two kinds of compatibility issues between tokio and futures:
- Tokio's types cannot be used outside tokio context, so any attempt to use
them will panic.
- Solution: If you apply the
Compat
adapter to a future, the future will enter the context of a global single-threaded tokio runtime started by this crate. That does not mean the future runs on the tokio runtime - it only means the future sets a thread-local variable pointing to the global tokio runtime so that tokio's types can be used inside it.
- Solution: If you apply the
- Tokio and futures have similar but different I/O traits
AsyncRead
,AsyncWrite
,AsyncBufRead
, andAsyncSeek
.- Solution: When the
Compat
adapter is applied to an I/O type, it will implement traits of the opposite kind. That's how you can use tokio-based types wherever futures-based types are expected, and the other way around.
- Solution: When the
Examples
This program reads lines from stdin and echoes them into stdout, except it's not going to work:
To get around the compatibility issues, apply the Compat
adapter to stdin
, stdout
, and
futures::io::copy()
:
use CompatExt;
It is also possible to apply Compat
to the outer future passed to
futures::executor::block_on()
rather than futures::io::copy()
itself.
When applied to the outer future, individual inner futures don't need the adapter because
they're all now inside tokio context:
use ;
The compatibility adapter converts between tokio-based and futures-based I/O types in any direction. Here's how we can write the same program by using futures-based I/O types inside tokio:
use CompatExt;
use Unblock;
async
Finally, we can use any tokio-based crate from any other async runtime. Here are reqwest and warp as an example:
use ;
use Filter;
License
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
at your option.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.